Initializes a new instance of the
SmartList<T> class.
Syntax
'Declaration
Public Function New( _
ByVal As Integer _
)
'Usage
Dim capacity As Integer
Dim instance As New SmartList(Of T)(capacity)
public SmartList<T>(
int
)
public SmartList<T>(
: Integer
);
public function SmartList<T>(
: int
);
public: SmartList<T>(
int
)
public:
SmartList<T>(
int
)
Parameters
- capacity
- The capacity.
See Also